├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── scss │ └── _variables_project.scss ├── config.toml ├── content ├── en │ ├── _index.html │ ├── about │ │ ├── _index.html │ │ └── featured-background.jpg │ ├── blog │ │ ├── _index.md │ │ ├── news │ │ │ ├── _index.md │ │ │ ├── first-post │ │ │ │ ├── featured-sunset-get.png │ │ │ │ └── index.md │ │ │ └── second-post.md │ │ └── releases │ │ │ ├── _index.md │ │ │ └── in-depth-monoliths-detailed-spec.md │ ├── community │ │ └── _index.md │ ├── docs │ │ ├── Concepts │ │ │ └── _index.md │ │ ├── Contribution guidelines │ │ │ └── _index.md │ │ ├── Examples │ │ │ └── _index.md │ │ ├── Getting started │ │ │ ├── _index.md │ │ │ └── example-page.md │ │ ├── Overview │ │ │ └── _index.md │ │ ├── Reference │ │ │ ├── _index.md │ │ │ └── parameter-reference.md │ │ ├── Tasks │ │ │ ├── Ponycopters │ │ │ │ ├── _index.md │ │ │ │ ├── configuring-ponycopters.md │ │ │ │ └── launching-ponycopters.md │ │ │ ├── _index.md │ │ │ ├── beds.md │ │ │ ├── porridge.md │ │ │ └── task.md │ │ ├── Tutorials │ │ │ ├── _index.md │ │ │ ├── multi-bear.md │ │ │ └── tutorial2.md │ │ └── _index.md │ ├── featured-background.jpg │ └── search.md └── no │ ├── _index.html │ ├── docs │ ├── _index.md │ ├── api-reference │ │ ├── _index.md │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── in-depth-monoliths-detailed-spec.md │ │ │ ├── the-inside-of-cryptography-detailed-spec.md │ │ │ ├── the-inside-of-microservices-how-does-it-work.md │ │ │ ├── the-math-of-java-how-does-it-work.md │ │ │ └── the-math-of-monographs-how-does-it-work.md │ │ ├── the-inside-of-java-the-inner-workings.md │ │ └── the-math-of-monoliths-detailed-spec.md │ ├── big-data │ │ ├── _index.md │ │ ├── examples │ │ │ ├── _index.md │ │ │ └── the-math-of-monographs-how-does-it-work.md │ │ ├── the-math-of-monographs-how-does-it-work.md │ │ └── tutorials │ │ │ ├── _index.md │ │ │ ├── in-depth-go-the-inner-workings.md │ │ │ ├── the-inside-of-cryptography-how-does-it-work.md │ │ │ ├── the-inside-of-java-detailed-spec.md │ │ │ ├── the-inside-of-microservices-detailed-spec.md │ │ │ └── the-math-of-cryptography-the-inner-workings.md │ ├── cloud-computing │ │ ├── _index.md │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── in-depth-cryptography-the-core-concepts.md │ │ │ ├── in-depth-go-how-does-it-work.md │ │ │ └── the-inside-of-monoliths-how-does-it-work.md │ │ ├── in-depth-go-detailed-spec.md │ │ ├── in-depth-monoliths-detailed-spec.md │ │ ├── the-inside-of-java-how-does-it-work.md │ │ └── tutorials │ │ │ ├── _index.md │ │ │ ├── in-depth-monographs-the-inner-workings.md │ │ │ ├── the-inside-of-go-the-inner-workings.md │ │ │ ├── the-inside-of-microservices-detailed-spec.md │ │ │ ├── the-math-of-java-the-inner-workings.md │ │ │ ├── the-math-of-microservices-detailed-spec.md │ │ │ ├── the-math-of-monographs-detailed-spec.md │ │ │ └── the-math-of-monoliths-the-inner-workings.md │ ├── content-management │ │ ├── _index.md │ │ ├── the-inside-of-cryptography-how-does-it-work.md │ │ ├── the-inside-of-monographs-the-core-concepts.md │ │ ├── the-math-of-microservices-how-does-it-work.md │ │ ├── the-math-of-monoliths-the-inner-workings.md │ │ └── tutorials │ │ │ ├── _index.md │ │ │ ├── in-depth-microservices-the-core-concepts.md │ │ │ ├── the-inside-of-cryptography-the-core-concepts.md │ │ │ ├── the-inside-of-microservices-the-core-concepts.md │ │ │ └── the-inside-of-recursion-the-inner-workings.md │ └── cross-platform │ │ ├── _index.md │ │ ├── examples │ │ ├── _index.md │ │ ├── in-depth-java-detailed-spec.md │ │ ├── the-inside-of-java-the-core-concepts.md │ │ ├── the-math-of-go-the-inner-workings.md │ │ └── the-math-of-recursion-the-inner-workings.md │ │ ├── in-depth-cryptography-detailed-spec.md │ │ ├── the-inside-of-monographs-how-does-it-work.md │ │ ├── the-inside-of-monoliths-the-core-concepts.md │ │ ├── the-inside-of-recursion-how-does-it-work.md │ │ └── tutorials │ │ ├── _index.md │ │ └── the-math-of-cryptography-how-does-it-work.md │ └── search.md ├── deploy.sh ├── layouts └── 404.html ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | public/ 3 | resources/ 4 | node_modules/ 5 | tech-doc-hugo 6 | 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | [submodule "themes/docsy"] 3 | path = themes/docsy 4 | url = https://github.com/google/docsy 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to this project. There are 4 | just a few small guidelines you need to follow. 5 | 6 | ## Contributor License Agreement 7 | 8 | Contributions to this project must be accompanied by a Contributor License 9 | Agreement. You (or your employer) retain the copyright to your contribution; 10 | this simply gives us permission to use and redistribute your contributions as 11 | part of the project. Head over to to see 12 | your current agreements on file or to sign a new one. 13 | 14 | You generally only need to submit a CLA once, so if you've already submitted one 15 | (even if it was for a different project), you probably don't need to do it 16 | again. 17 | 18 | ## Code reviews 19 | 20 | All submissions, including submissions by project members, require review. We 21 | use GitHub pull requests for this purpose. Consult 22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 23 | information on using pull requests. 24 | 25 | ## Community Guidelines 26 | 27 | This project follows 28 | [Google's Open Source Community Guidelines](https://opensource.google.com/conduct/). 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Docsy Example 2 | 3 | [Docsy](https://github.com/google/docsy) is a Hugo theme for technical documentation sites, providing easy site navigation, structure, and more. This **Docsy Example Project** uses the Docsy theme, as well as providing a skeleton documentation structure for you to use. You can either copy this project and edit it with your own content, or use the theme in your projects like any other [Hugo theme](https://gohugo.io/themes/installing-and-using-themes/). 4 | 5 | This Docsy Example Project is hosted at [https://example.docsy.dev/](https://example.docsy.dev/). 6 | 7 | You can find detailed theme instructions in the Docsy user guide: https://docsy.dev/docs/ 8 | 9 | This is not an officially supported Google product. This project is currently maintained. 10 | 11 | ## Cloning the Docsy Example Project 12 | 13 | The following will give you a project that is set up and ready to use (don't forget to use `--recurse-submodules` or you won't pull down some of the code you need to generate a working site). The `hugo server` command builds and serves the site. If you just want to build the site, run `hugo` instead. 14 | 15 | ```bash 16 | git clone --recurse-submodules --depth 1 https://github.com/google/docsy-example.git 17 | cd docsy-example 18 | hugo server 19 | ``` 20 | 21 | The theme is included as a Git submodule: 22 | 23 | ```bash 24 | ▶ git submodule 25 | a053131a4ebf6a59e4e8834a42368e248d98c01d themes/docsy (heads/master) 26 | ``` 27 | 28 | If you want to do SCSS edits and want to publish these, you need to install `PostCSS` (not needed for `hugo server`): 29 | 30 | ```bash 31 | npm install 32 | ``` 33 | 34 | 51 | 52 | ## Running the website locally 53 | 54 | Once you've cloned the site repo, from the repo root folder, run: 55 | 56 | ``` 57 | hugo server 58 | ``` 59 | -------------------------------------------------------------------------------- /assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Add styles or override variables from the theme here. 4 | 5 | */ 6 | 7 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | baseURL = "/" 2 | title = "Goldydocs" 3 | 4 | enableRobotsTXT = true 5 | 6 | # Hugo allows theme composition (and inheritance). The precedence is from left to right. 7 | theme = ["docsy"] 8 | 9 | # Will give values to .Lastmod etc. 10 | enableGitInfo = true 11 | 12 | # Language settings 13 | contentDir = "content/en" 14 | defaultContentLanguage = "en" 15 | defaultContentLanguageInSubdir = false 16 | # Useful when translating. 17 | enableMissingTranslationPlaceholders = true 18 | 19 | disableKinds = ["taxonomy", "taxonomyTerm"] 20 | 21 | # Highlighting config 22 | pygmentsCodeFences = true 23 | pygmentsUseClasses = false 24 | # Use the new Chroma Go highlighter in Hugo. 25 | pygmentsUseClassic = false 26 | #pygmentsOptions = "linenos=table" 27 | # See https://help.farbox.com/pygments.html 28 | pygmentsStyle = "tango" 29 | 30 | # Configure how URLs look like per section. 31 | [permalinks] 32 | blog = "/:section/:year/:month/:day/:slug/" 33 | 34 | ## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday 35 | [blackfriday] 36 | plainIDAnchors = true 37 | hrefTargetBlank = true 38 | angledQuotes = false 39 | latexDashes = true 40 | 41 | # Image processing configuration. 42 | [imaging] 43 | resampleFilter = "CatmullRom" 44 | quality = 75 45 | anchor = "smart" 46 | 47 | [services] 48 | [services.googleAnalytics] 49 | # Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback]. 50 | id = "UA-00000000-0" 51 | 52 | # Language configuration 53 | 54 | [languages] 55 | [languages.en] 56 | title = "Goldydocs" 57 | description = "A Docsy example site" 58 | languageName ="English" 59 | # Weight used for sorting. 60 | weight = 1 61 | [languages.no] 62 | title = "Goldydocs" 63 | description = "Docsy er operativsystem for skyen" 64 | languageName ="Norsk" 65 | contentDir = "content/no" 66 | time_format_default = "02.01.2006" 67 | time_format_blog = "02.01.2006" 68 | 69 | 70 | # Everything below this are Site Params 71 | 72 | [params] 73 | copyright = "The Docsy Authors" 74 | privacy_policy = "https://policies.google.com/privacy" 75 | 76 | # First one is picked as the Twitter card image if not set on page. 77 | # images = ["images/project-illustration.png"] 78 | 79 | # Menu title if your navbar has a versions selector to access old versions of your site. 80 | # This menu appears only if you have at least one [params.versions] set. 81 | version_menu = "Releases" 82 | 83 | # Repository configuration (URLs for in-page links to opening issues and suggesting changes) 84 | github_repo = "https://github.com/google/docsy-example" 85 | # An optional link to a related project repo. For example, the sibling repository where your product code lives. 86 | github_project_repo = "https://github.com/google/docsy" 87 | 88 | # Specify a value here if your content directory is not in your repo's root directory 89 | # github_subdir = "" 90 | 91 | # Google Custom Search Engine ID. Remove or comment out to disable search. 92 | gcs_engine_id = "011737558837375720776:fsdu1nryfng" 93 | 94 | # User interface configuration 95 | [params.ui] 96 | # Enable to show the side bar menu in its compact state. 97 | sidebar_menu_compact = false 98 | # Set to true to disable breadcrumb navigation. 99 | breadcrumb_disable = false 100 | # Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled) 101 | sidebar_search_disable = false 102 | # Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar 103 | navbar_logo = true 104 | # Set to true to disable the About link in the site footer 105 | footer_about_disable = false 106 | 107 | # Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events. 108 | # This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set. 109 | # If you want this feature, but occasionally need to remove the "Feedback" section from a single page, 110 | # add "hide_feedback: true" to the page's front matter. 111 | [params.ui.feedback] 112 | enable = true 113 | # The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful). 114 | yes = 'Glad to hear it! Please tell us how we can improve.' 115 | no = 'Sorry to hear that. Please tell us how we can improve.' 116 | 117 | [params.links] 118 | # End user relevant links. These will show up on left side of footer and in the community page if you have one. 119 | [[params.links.user]] 120 | name = "User mailing list" 121 | url = "https://example.org/mail" 122 | icon = "fa fa-envelope" 123 | desc = "Discussion and help from your fellow users" 124 | [[params.links.user]] 125 | name ="Twitter" 126 | url = "https://example.org/twitter" 127 | icon = "fab fa-twitter" 128 | desc = "Follow us on Twitter to get the latest news!" 129 | [[params.links.user]] 130 | name = "Stack Overflow" 131 | url = "https://example.org/stack" 132 | icon = "fab fa-stack-overflow" 133 | desc = "Practical questions and curated answers" 134 | # Developer relevant links. These will show up on right side of footer and in the community page if you have one. 135 | [[params.links.developer]] 136 | name = "GitHub" 137 | url = "https://github.com/google/docsy" 138 | icon = "fab fa-github" 139 | desc = "Development takes place here!" 140 | [[params.links.developer]] 141 | name = "Slack" 142 | url = "https://example.org/slack" 143 | icon = "fab fa-slack" 144 | desc = "Chat with other project developers" 145 | [[params.links.developer]] 146 | name = "Developer mailing list" 147 | url = "https://example.org/mail" 148 | icon = "fa fa-envelope" 149 | desc = "Discuss development issues around the project" 150 | 151 | -------------------------------------------------------------------------------- /content/en/_index.html: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Goldydocs" 3 | linkTitle = "Goldydocs" 4 | 5 | +++ 6 | 7 | {{< blocks/cover title="Welcome to Goldydocs: A Docsy Example Project!" image_anchor="top" height="full" color="orange" >}} 8 |
9 | }}"> 10 | Learn More 11 | 12 | 13 | Download 14 | 15 |

Porridge temperature assessment - in the cloud!

16 |
17 | {{< blocks/link-down color="info" >}} 18 |
19 |
20 | {{< /blocks/cover >}} 21 | 22 | 23 | {{% blocks/lead color="primary" %}} 24 | Goldydocs provides a single web UI providing visibility into porridge temperature, chair size, and bed softness metrics! You can even find out who's been eating **your** porridge. 25 | 26 | (Sadly, Goldydocs isn't a real project, but you can use this site as an example to create your own real websites with [Docsy](http://docsy.dev)) 27 | {{% /blocks/lead %}} 28 | 29 | {{< blocks/section color="dark" >}} 30 | {{% blocks/feature icon="fa-lightbulb" title="New chair metrics!" %}} 31 | The Goldydocs UI now shows chair size metrics by default. 32 | 33 | Please follow this space for updates! 34 | {{% /blocks/feature %}} 35 | 36 | 37 | {{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/google/docsy-example" %}} 38 | We do a [Pull Request](https://github.com/gohugoio/hugo/pulls) contributions workflow on **GitHub**. New users are always welcome! 39 | {{% /blocks/feature %}} 40 | 41 | 42 | {{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" url="https://twitter.com/docsydocs" %}} 43 | For announcement of latest features etc. 44 | {{% /blocks/feature %}} 45 | 46 | 47 | {{< /blocks/section >}} 48 | 49 | 50 | {{< blocks/section >}} 51 |
52 |

This is the second Section

53 |
54 | 55 | {{< /blocks/section >}} 56 | 57 | 58 | 59 | {{< blocks/section >}} 60 | {{% blocks/feature icon="fab fa-app-store-ios" title="Download **from AppStore**" %}} 61 | Get the Goldydocs app! 62 | {{% /blocks/feature %}} 63 | 64 | 65 | {{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/gohugoio/hugo" %}} 66 | We do a [Pull Request](https://github.com/gohugoio/hugo/pulls) contributions workflow on **GitHub**. New users are always welcome! 67 | {{% /blocks/feature %}} 68 | 69 | 70 | {{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" url="https://twitter.com/GoHugoIO" %}} 71 | For announcement of latest features etc. 72 | {{% /blocks/feature %}} 73 | 74 | 75 | {{< /blocks/section >}} 76 | 77 | {{< blocks/section >}} 78 | 79 |
80 |

This is another Section

81 |
82 | 83 | {{< /blocks/section >}} 84 | -------------------------------------------------------------------------------- /content/en/about/_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: About Goldydocs 3 | linkTitle: About 4 | menu: 5 | main: 6 | weight: 10 7 | 8 | --- 9 | 10 | 11 | {{< blocks/cover title="About Goldydocs" image_anchor="bottom" height="min" >}} 12 | 13 |

A sample site using the Docsy Hugo theme. 14 |

15 | 16 | {{< /blocks/cover >}} 17 | 18 | {{% blocks/lead %}} 19 | Goldydocs is a sample site using the Docsy Hugo theme that shows what it can do and provides you with a template site structure. It’s designed for you to clone and edit as much as you like. See the different sections of the documentation and site for more ideas. 20 | {{% /blocks/lead %}} 21 | 22 | 23 | {{< blocks/section >}} 24 |
25 |

This is another section

26 |
27 | 28 | {{< /blocks/section >}} 29 | 30 | 31 | 32 | {{< blocks/section >}} 33 | 34 |
35 |

This is another section

36 |
37 | 38 | {{< /blocks/section >}} 39 | -------------------------------------------------------------------------------- /content/en/about/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/docs/15575b410ea92a283ba5a87025f099bcc5b87b54/content/en/about/featured-background.jpg -------------------------------------------------------------------------------- /content/en/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Docsy Blog" 3 | linkTitle: "Blog" 4 | menu: 5 | main: 6 | weight: 30 7 | --- 8 | 9 | 10 | This is the **blog** section. It has two categories: News and Releases. 11 | 12 | Files in these directories will be listed in reverse chronological order. 13 | 14 | -------------------------------------------------------------------------------- /content/en/blog/news/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "News About Docsy" 4 | linkTitle: "News" 5 | weight: 20 6 | --- 7 | 8 | 9 | -------------------------------------------------------------------------------- /content/en/blog/news/first-post/featured-sunset-get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/docs/15575b410ea92a283ba5a87025f099bcc5b87b54/content/en/blog/news/first-post/featured-sunset-get.png -------------------------------------------------------------------------------- /content/en/blog/news/first-post/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2018-10-06 3 | title: "Easy documentation with Docsy" 4 | linkTitle: "Announcing Docsy" 5 | description: "The Docsy Hugo theme lets project maintainers and contributors focus on content, not on reinventing a website infrastructure from scratch" 6 | author: Riona MacNamara ([@rionam](https://twitter.com/bepsays)) 7 | resources: 8 | - src: "**.{png,jpg}" 9 | title: "Image #:counter" 10 | params: 11 | byline: "Photo: Riona MacNamara / CC-BY-CA" 12 | --- 13 | 14 | **This is a typical blog post that includes images.** 15 | 16 | The front matter specifies the date of the blog post, its title, a short description that will be displayed on the blog landing page, and its author. 17 | 18 | ## Including images 19 | 20 | Here's an image (`featured-sunset-get.png`) that includes a byline and a caption. 21 | 22 | {{< imgproc sunset Fill "600x300" >}} 23 | Fetch and scale an image in the upcoming Hugo 0.43. 24 | {{< /imgproc >}} 25 | 26 | The front matter of this post specifies properties to be assigned to all image resources: 27 | 28 | ``` 29 | resources: 30 | - src: "**.{png,jpg}" 31 | title: "Image #:counter" 32 | params: 33 | byline: "Photo: Riona MacNamara / CC-BY-CA" 34 | ``` 35 | 36 | To include the image in a page, specify its details like this: 37 | 38 | ``` 39 | {{< imgproc sunset Fill "600x300" >}} 40 | Fetch and scale an image in the upcoming Hugo 0.43. 41 | {{< /imgproc >}} 42 | ``` 43 | 44 | The image will be rendered at the size and byline specified in the front matter. 45 | 46 | 47 | -------------------------------------------------------------------------------- /content/en/blog/news/second-post.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "The second blog post" 4 | linkTitle: "Second blog post" 5 | date: 2018-10-06 6 | description: > 7 | A short lead descripton about this content page. Text here can also be **bold** or _italic_ and can even be split over multiple paragraphs. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. 13 | 14 | There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. 15 | 16 | > There should be no margin above this first sentence. 17 | > 18 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 19 | > 20 | > There should be no margin below this final sentence. 21 | 22 | ## First Header 23 | 24 | This is a normal paragraph following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 25 | 26 | 27 | 28 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 29 | 30 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 31 | 32 | Lorem markdownum tuta hospes stabat; idem saxum facit quaterque repetito 33 | occumbere, oves novem gestit haerebat frena; qui. Respicit recurvam erat: 34 | pignora hinc reppulit nos **aut**, aptos, ipsa. 35 | 36 | Meae optatos *passa est* Epiros utiliter *Talibus niveis*, hoc lata, edidit. 37 | Dixi ad aestum. 38 | 39 | ## Header 2 40 | 41 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 42 | 43 | ### Header 3 44 | 45 | ``` 46 | This is a code block following a header. 47 | ``` 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Salt-n-Pepa 78 | * Bel Biv DeVoe 79 | * Kid 'N Play 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Jackson 84 | 2. Michael Bolton 85 | 3. Michael Bublé 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a sample markdown document 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Steal underpants 96 | - ? 97 | - [ ] Profit! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition terms are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://placekitten.com/g/300/200/) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://placekitten.com/g/1200/800/) 197 | 198 | ## Components 199 | 200 | ### Alerts 201 | 202 | {{< alert >}}This is an alert.{{< /alert >}} 203 | {{< alert title="Note:" >}}This is an alert with a title.{{< /alert >}} 204 | {{< alert type="success" >}}This is a successful alert.{{< /alert >}} 205 | {{< alert type="warning" >}}This is a warning!{{< /alert >}} 206 | {{< alert type="warning" title="Warning!" >}}This is a warning with a title!{{< /alert >}} 207 | 208 | 209 | ## Sizing 210 | 211 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 212 | 213 | ### Parameters available 214 | 215 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### Using pixels 218 | 219 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 220 | 221 | ### Using rem 222 | 223 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 224 | 225 | ## Memory 226 | 227 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 228 | 229 | ### RAM to use 230 | 231 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 232 | 233 | ### More is better 234 | 235 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 236 | 237 | ### Used RAM 238 | 239 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 240 | 241 | 242 | 243 | ``` 244 | This is the final element on the page and there should be no margin below this. 245 | ``` 246 | -------------------------------------------------------------------------------- /content/en/blog/releases/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "New Releases" 4 | linkTitle: "Releases" 5 | weight: 20 6 | --- 7 | 8 | 9 | -------------------------------------------------------------------------------- /content/en/blog/releases/in-depth-monoliths-detailed-spec.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Another Great Release" 4 | linkTitle: "Release New Features" 5 | date: 2018-01-04 6 | description: > 7 | A short lead descripton about this content page. Text here can also be **bold** or _italic_ and can even be split over multiple paragraphs. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. 13 | 14 | There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. 15 | 16 | > There should be no margin above this first sentence. 17 | > 18 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 19 | > 20 | > There should be no margin below this final sentence. 21 | 22 | ## First Header 23 | 24 | This is a normal paragraph following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 25 | 26 | 27 | 28 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 29 | 30 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 31 | 32 | Lorem markdownum tuta hospes stabat; idem saxum facit quaterque repetito 33 | occumbere, oves novem gestit haerebat frena; qui. Respicit recurvam erat: 34 | pignora hinc reppulit nos **aut**, aptos, ipsa. 35 | 36 | Meae optatos *passa est* Epiros utiliter *Talibus niveis*, hoc lata, edidit. 37 | Dixi ad aestum. 38 | 39 | ## Header 2 40 | 41 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 42 | 43 | ### Header 3 44 | 45 | ``` 46 | This is a code block following a header. 47 | ``` 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Salt-n-Pepa 78 | * Bel Biv DeVoe 79 | * Kid 'N Play 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Jackson 84 | 2. Michael Bolton 85 | 3. Michael Bublé 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a sample markdown document 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Steal underpants 96 | - ? 97 | - [ ] Profit! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition terms are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://placekitten.com/g/300/200/) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://placekitten.com/g/1200/800/) 197 | 198 | ## Components 199 | 200 | ### Alerts 201 | 202 | {{< alert >}}This is an alert.{{< /alert >}} 203 | {{< alert title="Note:" >}}This is an alert with a title.{{< /alert >}} 204 | {{< alert type="success" >}}This is a successful alert.{{< /alert >}} 205 | {{< alert type="warning" >}}This is a warning!{{< /alert >}} 206 | {{< alert type="warning" title="Warning!" >}}This is a warning with a title!{{< /alert >}} 207 | 208 | 209 | ## Sizing 210 | 211 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 212 | 213 | ### Parameters available 214 | 215 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### Using pixels 218 | 219 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 220 | 221 | ### Using rem 222 | 223 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 224 | 225 | ## Memory 226 | 227 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 228 | 229 | ### RAM to use 230 | 231 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 232 | 233 | ### More is better 234 | 235 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 236 | 237 | ### Used RAM 238 | 239 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 240 | 241 | 242 | 243 | ``` 244 | This is the final element on the page and there should be no margin below this. 245 | ``` 246 | -------------------------------------------------------------------------------- /content/en/community/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Community 3 | menu: 4 | main: 5 | weight: 40 6 | --- 7 | 8 | 9 | -------------------------------------------------------------------------------- /content/en/docs/Concepts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Concepts" 3 | linkTitle: "Concepts" 4 | weight: 4 5 | description: > 6 | What does your user need to understand about your project in order to use it - or potentially contribute to it? 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | For many projects, users may not need much information beyond the information in the [Overview](/docs/overview/), so this section is **optional**. However if there are areas where your users will need a more detailed understanding of a given term or feature in order to do anything useful with your project (or to not make mistakes when using it) put that information in this section. For example, you may want to add some conceptual pages if you have a large project with many components and a complex architecture. 14 | 15 | Remember to focus on what the user needs to know, not just what you think is interesting about your project! If they don’t need to understand your original design decisions to use or contribute to the project, don’t put them in, or include your design docs in your repo and link to them. Similarly, most users will probably need to know more about how features work when in use rather than how they are implemented. Consider a separate architecture page for more detailed implementation and system design information that potential project contributors can consult. 16 | 17 | 18 | -------------------------------------------------------------------------------- /content/en/docs/Contribution guidelines/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contribution Guidelines" 3 | linkTitle: "Contribution Guidelines" 4 | weight: 10 5 | description: > 6 | How to contribute to the docs 7 | --- 8 | 9 | {{% pageinfo %}} 10 | These basic sample guidelines assume that your Docsy site is deployed using Netlify and your files are stored in GitHub. You can use the guidelines "as is" or adapt them with your own instructions: for example, other deployment options, information about your doc project's file structure, project-specific review guidelines, versioning guidelines, or any other information your users might find useful when updating your site. [Kubeflow](https://github.com/kubeflow/website/blob/master/README.md) has a great example. 11 | 12 | Don't forget to link to your own doc repo rather than our example site! Also make sure users can find these guidelines from your doc repo README: either add them there and link to them from this page, add them here and link to them from the README, or include them in both locations. 13 | {{% /pageinfo %}} 14 | 15 | We use [Hugo](https://gohugo.io/) to format and generate our website, the 16 | [Docsy](https://github.com/google/docsy) theme for styling and site structure, 17 | and [Netlify](https://www.netlify.com/) to manage the deployment of the site. 18 | Hugo is an open-source static site generator that provides us with templates, 19 | content organisation in a standard directory structure, and a website generation 20 | engine. You write the pages in Markdown (or HTML if you want), and Hugo wraps them up into a website. 21 | 22 | All submissions, including submissions by project members, require review. We 23 | use GitHub pull requests for this purpose. Consult 24 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 25 | information on using pull requests. 26 | 27 | ## Quick start with Netlify 28 | 29 | Here's a quick guide to updating the docs. It assumes you're familiar with the 30 | GitHub workflow and you're happy to use the automated preview of your doc 31 | updates: 32 | 33 | 1. Fork the [Goldydocs repo](https://github.com/google/docsy-example) on GitHub. 34 | 1. Make your changes and send a pull request (PR). 35 | 1. If you're not yet ready for a review, add "WIP" to the PR name to indicate 36 | it's a work in progress. (**Don't** add the Hugo property 37 | "draft = true" to the page front matter, because that prevents the 38 | auto-deployment of the content preview described in the next point.) 39 | 1. Wait for the automated PR workflow to do some checks. When it's ready, 40 | you should see a comment like this: **deploy/netlify — Deploy preview ready!** 41 | 1. Click **Details** to the right of "Deploy preview ready" to see a preview 42 | of your updates. 43 | 1. Continue updating your doc and pushing your changes until you're happy with 44 | the content. 45 | 1. When you're ready for a review, add a comment to the PR, and remove any 46 | "WIP" markers. 47 | 48 | ## Updating a single page 49 | 50 | If you've just spotted something you'd like to change while using the docs, Docsy has a shortcut for you: 51 | 52 | 1. Click **Edit this page** in the top right hand corner of the page. 53 | 1. If you don't already have an up to date fork of the project repo, you are prompted to get one - click **Fork this repository and propose changes** or **Update your Fork** to get an up to date version of the project to edit. The appropriate page in your fork is displayed in edit mode. 54 | 1. Follow the rest of the [Quick start with Netlify](#quick-start-with-netlify) process above to make, preview, and propose your changes. 55 | 56 | ## Previewing your changes locally 57 | 58 | If you want to run your own local Hugo server to preview your changes as you work: 59 | 60 | 1. Follow the instructions in [Getting started](/docs/getting-started) to install Hugo and any other tools you need. You'll need at least **Hugo version 0.45** (we recommend using the most recent available version), and it must be the **extended** version, which supports SCSS. 61 | 1. Fork the [Goldydocs repo](https://github.com/google/docsy-example) repo into your own project, then create a local copy using `git clone`. Don’t forget to use `--recurse-submodules` or you won’t pull down some of the code you need to generate a working site. 62 | 63 | ``` 64 | git clone --recurse-submodules --depth 1 https://github.com/google/docsy-example.git 65 | ``` 66 | 67 | 1. Run `hugo server` in the site root directory. By default your site will be available at http://localhost:1313/. Now that you're serving your site locally, Hugo will watch for changes to the content and automatically refresh your site. 68 | 1. Continue with the usual GitHub workflow to edit files, commit them, push the 69 | changes up to your fork, and create a pull request. 70 | 71 | ## Creating an issue 72 | 73 | If you've found a problem in the docs, but you're not sure how to fix it yourself, please create an issue in the [Goldydocs repo](https://github.com/google/docsy-example/issues). You can also create an issue about a specific page by clicking the **Create Issue** button in the top right hand corner of the page. 74 | 75 | ## Useful resources 76 | 77 | * [Docsy user guide](wherever it goes): All about Docsy, including how it manages navigation, look and feel, and multi-language support. 78 | * [Hugo documentation](https://gohugo.io/documentation/): Comprehensive reference for Hugo. 79 | * [Github Hello World!](https://guides.github.com/activities/hello-world/): A basic introduction to GitHub concepts and workflow. 80 | 81 | 82 | -------------------------------------------------------------------------------- /content/en/docs/Examples/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Examples" 4 | linkTitle: "Examples" 5 | weight: 3 6 | date: 2017-01-05 7 | description: > 8 | See your project in action! 9 | --- 10 | 11 | {{% pageinfo %}} 12 | This is a placeholder page that shows you how to use this template site. 13 | {{% /pageinfo %}} 14 | 15 | Do you have any example **applications** or **code** for your users in your repo or elsewhere? Link to your examples here. 16 | 17 | 18 | -------------------------------------------------------------------------------- /content/en/docs/Getting started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Getting Started" 3 | linkTitle: "Getting Started" 4 | weight: 2 5 | description: > 6 | What does your user need to know to try your project? 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | Information in this section helps your user try your project themselves. 14 | 15 | * What do your users need to do to start using your project? This could include downloading/installation instructions, including any prerequisites or system requirements. 16 | 17 | * Introductory “Hello World” example, if appropriate. More complex tutorials should live in the Tutorials section. 18 | 19 | Consider using the headings below for your getting started page. You can delete any that are not applicable to your project. 20 | 21 | ## Prerequisites 22 | 23 | Are there any system requirements for using your project? What languages are supported (if any)? Do users need to already have any software or tools installed? 24 | 25 | ## Installation 26 | 27 | Where can your user find your project code? How can they install it (binaries, installable package, build from source)? Are there multiple options/versions they can install and how should they choose the right one for them? 28 | 29 | ## Setup 30 | 31 | Is there any initial setup users need to do after installation to try your project? 32 | 33 | ## Try it out! 34 | 35 | Can your users test their installation, for example by running a commmand or deploying a Hello World example? 36 | 37 | -------------------------------------------------------------------------------- /content/en/docs/Overview/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Overview" 3 | linkTitle: "Overview" 4 | weight: 1 5 | description: > 6 | Here's where your user finds out if your project is for them. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | 14 | The Overview is where your users find out about your project. Depending on the size of your docset, you can have a separate overview page (like this one) or put your overview contents in the Documentation landing page (like in the Docsy User Guide). 15 | 16 | Try answering these questions for your user in this page: 17 | 18 | ## What is it? 19 | 20 | Introduce your project, including what it does or lets you do, why you would use it, and its primary goal (and how it achieves it). This should be similar to your README description, though you can go into a little more detail here if you want. 21 | 22 | ## Why do I want it? 23 | 24 | Help your user know if your project will help them. Useful information can include: 25 | 26 | * **What is it good for?**: What types of problems does your project solve? What are the benefits of using it? 27 | 28 | * **What is it not good for?**: For example, point out situations that might intuitively seem suited for your project, but aren't for some reason. Also mention known limitations, scaling issues, or anything else that might let your users know if the project is not for them. 29 | 30 | * **What is it *not yet* good for?**: Highlight any useful features that are coming soon. 31 | 32 | ## Where should I go next? 33 | 34 | Give your users next steps from the Overview. For example: 35 | 36 | * [Getting Started](/getting-started/): Get started with $project 37 | * [Examples](/examples/): Check out some example code! 38 | 39 | -------------------------------------------------------------------------------- /content/en/docs/Reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Reference" 3 | linkTitle: "Reference" 4 | weight: 9 5 | description: > 6 | Low level reference docs for your project. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | If your project has an API, configuration, or other reference - anything that users need to look up that’s at an even lower level than a single task - put (or link to it) here. You can serve and link to generated reference docs created using Doxygen, 14 | Javadoc, or other doc generation tools by putting them in your `static/` directory. Find out more in [Adding static content](https://docsy.dev/docs/adding-content/content/#adding-static-content). 15 | -------------------------------------------------------------------------------- /content/en/docs/Reference/parameter-reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Parameter Reference" 3 | linkTitle: "Parameter Reference" 4 | date: 2017-01-05 5 | description: > 6 | A short lead descripton about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page. Replace it with your own content. 11 | {{% /pageinfo %}} 12 | 13 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 14 | 15 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 16 | 17 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 18 | 19 | > There should be no margin above this first sentence. 20 | > 21 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 22 | > 23 | > There should be no margin below this final sentence. 24 | 25 | ## First Header 2 26 | 27 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 28 | 29 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 30 | 31 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 32 | 33 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 34 | 35 | 36 | ## Second Header 2 37 | 38 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 39 | 40 | ### Header 3 41 | 42 | ``` 43 | This is a code block following a header. 44 | ``` 45 | 46 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 47 | 48 | #### Header 4 49 | 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | 54 | ##### Header 5 55 | 56 | 1. This is an ordered list following a header. 57 | 2. This is an ordered list following a header. 58 | 3. This is an ordered list following a header. 59 | 60 | ###### Header 6 61 | 62 | | What | Follows | 63 | |-----------|-----------------| 64 | | A table | A header | 65 | | A table | A header | 66 | | A table | A header | 67 | 68 | ---------------- 69 | 70 | There's a horizontal rule above and below this. 71 | 72 | ---------------- 73 | 74 | Here is an unordered list: 75 | 76 | * Liverpool F.C. 77 | * Chelsea F.C. 78 | * Manchester United F.C. 79 | 80 | And an ordered list: 81 | 82 | 1. Michael Brecker 83 | 2. Seamus Blake 84 | 3. Branford Marsalis 85 | 86 | And an unordered task list: 87 | 88 | - [x] Create a Hugo theme 89 | - [x] Add task lists to it 90 | - [ ] Take a vacation 91 | 92 | And a "mixed" task list: 93 | 94 | - [ ] Pack bags 95 | - ? 96 | - [ ] Travel! 97 | 98 | And a nested list: 99 | 100 | * Jackson 5 101 | * Michael 102 | * Tito 103 | * Jackie 104 | * Marlon 105 | * Jermaine 106 | * TMNT 107 | * Leonardo 108 | * Michelangelo 109 | * Donatello 110 | * Raphael 111 | 112 | Definition lists can be used with Markdown syntax. Definition headers are bold. 113 | 114 | Name 115 | : Godzilla 116 | 117 | Born 118 | : 1952 119 | 120 | Birthplace 121 | : Japan 122 | 123 | Color 124 | : Green 125 | 126 | 127 | ---------------- 128 | 129 | Tables should have bold headings and alternating shaded rows. 130 | 131 | | Artist | Album | Year | 132 | |-------------------|-----------------|------| 133 | | Michael Jackson | Thriller | 1982 | 134 | | Prince | Purple Rain | 1984 | 135 | | Beastie Boys | License to Ill | 1986 | 136 | 137 | If a table is too wide, it should scroll horizontally. 138 | 139 | | Artist | Album | Year | Label | Awards | Songs | 140 | |-------------------|-----------------|------|-------------|----------|-----------| 141 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 142 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 143 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 144 | 145 | ---------------- 146 | 147 | Code snippets like `var foo = "bar";` can be shown inline. 148 | 149 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 150 | 151 | Code can also be shown in a block element. 152 | 153 | ``` 154 | foo := "bar"; 155 | bar := "foo"; 156 | ``` 157 | 158 | Code can also use syntax highlighting. 159 | 160 | ```go 161 | func main() { 162 | input := `var foo = "bar";` 163 | 164 | lexer := lexers.Get("javascript") 165 | iterator, _ := lexer.Tokenise(nil, input) 166 | style := styles.Get("github") 167 | formatter := html.New(html.WithLineNumbers()) 168 | 169 | var buff bytes.Buffer 170 | formatter.Format(&buff, style, iterator) 171 | 172 | fmt.Println(buff.String()) 173 | } 174 | ``` 175 | 176 | ``` 177 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 178 | ``` 179 | 180 | Inline code inside table cells should still be distinguishable. 181 | 182 | | Language | Code | 183 | |-------------|--------------------| 184 | | Javascript | `var foo = "bar";` | 185 | | Ruby | `foo = "bar"{` | 186 | 187 | ---------------- 188 | 189 | Small images should be shown at their actual size. 190 | 191 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 192 | 193 | Large images should always scale down and fit in the content container. 194 | 195 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 196 | 197 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 198 | 199 | 200 | ## Components 201 | 202 | ### Alerts 203 | 204 | {{< alert >}}This is an alert.{{< /alert >}} 205 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 206 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 207 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 208 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 209 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 210 | 211 | 212 | ## Another Heading 213 | -------------------------------------------------------------------------------- /content/en/docs/Tasks/Ponycopters/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Working with Ponycopters" 4 | linkTitle: "Working with Ponycopters" 5 | date: 2017-01-05 6 | description: > 7 | A short lead descripton about this section page. Text here can also be **bold** or _italic_ and can even be split over multiple paragraphs. 8 | --- 9 | 10 | {{% pageinfo %}} 11 | This is a placeholder page. Replace it with your own content. 12 | {{% /pageinfo %}} 13 | 14 | 15 | This is the section landing page. 16 | 17 | -------------------------------------------------------------------------------- /content/en/docs/Tasks/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Core Tasks" 4 | linkTitle: "Core Tasks" 5 | weight: 6 6 | date: 2017-01-05 7 | description: > 8 | What can your user do with your project? 9 | --- 10 | 11 | {{% pageinfo %}} 12 | This is a placeholder page that shows you how to use this template site. 13 | {{% /pageinfo %}} 14 | 15 | Think about your project’s features and use cases. Use these to choose your core tasks. Each granular use case (enable x, configure y) should have a corresponding tasks page or tasks page section. Users should be able to quickly refer to your core tasks when they need to find out how to do one specific thing, rather than having to look for the instructions in a bigger tutorial or example. Think of your tasks pages as a cookbook with different procedures your users can combine to create something more substantial. 16 | 17 | You can give each task a page, or you can group related tasks together in a page, such as tasks related to a particular feature. As well as grouping related tasks in single pages, you can also group task pages in nested folders with an index page as an overview, as seen in this example site. Or if you have a small docset like the [Docsy User Guide](https://docsy.dev/docs/) with no Tutorials or Concepts pages, consider adding your feature-specific pages at the top level of your docs rather than in a Tasks section. 18 | 19 | Each task should give the user 20 | 21 | * The prerequisites for this task, if any (this can be specified at the top of a multi-task page if they're the same for all the page's tasks. "All these tasks assume that you understand....and that you have already...."). 22 | * What this task accomplishes. 23 | * Instructions for the task. If it involves editing a file, running a command, or writing code, provide code-formatted example snippets to show the user what to do! If there are multiple steps, provide them as a numbered list. 24 | * If appropriate, links to related concept, tutorial, or example pages. 25 | 26 | -------------------------------------------------------------------------------- /content/en/docs/Tutorials/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Tutorials" 4 | linkTitle: "Tutorials" 5 | weight: 8 6 | date: 2017-01-04 7 | description: > 8 | Show your user how to work through some end to end examples. 9 | --- 10 | 11 | {{% pageinfo %}} 12 | This is a placeholder page that shows you how to use this template site. 13 | {{% /pageinfo %}} 14 | 15 | Tutorials are **complete worked examples** made up of **multiple tasks** that guide the user through a relatively simple but realistic scenario: building an application that uses some of your project’s features, for example. If you have already created some Examples for your project you can base Tutorials on them. This section is **optional**. However, remember that although you may not need this section at first, having tutorials can be useful to help your users engage with your example code, especially if there are aspects that need more explanation than you can easily provide in code comments. 16 | 17 | -------------------------------------------------------------------------------- /content/en/docs/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Documentation" 4 | linkTitle: "Documentation" 5 | weight: 20 6 | menu: 7 | main: 8 | weight: 20 9 | --- 10 | 11 | {{% pageinfo %}} 12 | This is a placeholder page that shows you how to use this template site. 13 | {{% /pageinfo %}} 14 | 15 | 16 | This section is where the user documentation for your project lives - all the information your users need to understand and successfully use your project. 17 | 18 | For large documentation sets we recommend adding content under the headings in this section, though if some or all of them don’t apply to your project feel free to remove them or add your own. You can see an example of a smaller Docsy documentation site in the [Docsy User Guide](https://docsy.dev/docs/), which lives in the [Docsy theme repo](https://github.com/google/docsy/tree/master/userguide) if you'd like to copy its docs section. 19 | 20 | Other content such as marketing material, case studies, and community updates should live in the [About](/about/) and [Community](/community/) pages. 21 | 22 | Find out how to use the Docsy theme in the [Docsy User Guide](https://docsy.dev/docs/). You can learn more about how to organize your documentation (and how we organized this site) in [Organizing Your Content](https://docsy.dev/docs/best-practices/organizing-content/). 23 | 24 | 25 | -------------------------------------------------------------------------------- /content/en/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebar/docs/15575b410ea92a283ba5a87025f099bcc5b87b54/content/en/featured-background.jpg -------------------------------------------------------------------------------- /content/en/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search Results 3 | layout: search 4 | 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /content/no/_index.html: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "TechOS" 3 | linkTitle = "TechOS" 4 | 5 | +++ 6 | 7 | {{< blocks/cover title="Dette er TechOS!" image_anchor="top" height="full" >}} 8 |
9 | }}"> 10 | Dokumentasjon 11 | 12 | 13 | Last ned 14 | 15 |

TechOS kan nå lastes ned i AppStore!

16 |
17 | {{< blocks/link-down color="info" >}} 18 |
19 |
20 | {{< /blocks/cover >}} 21 | 22 | 23 | -------------------------------------------------------------------------------- /content/no/docs/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "TechOS-Dokumentasjon" 4 | linkTitle: "Dokumentasjon" 5 | weight: 20 6 | menu: 7 | main: 8 | weight: 20 9 | --- 10 | 11 | Dette er landingssiden til en seksjon på øverste nivå. 12 | 13 | * Oppsummer 14 | * Seksjonen din 15 | * Her 16 | 17 | 18 | -------------------------------------------------------------------------------- /content/no/docs/api-reference/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Komplett API-referance" 4 | linkTitle: "API-referanse" 5 | date: 2017-01-02 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/api-reference/examples/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Praktiske eksempler" 4 | linkTitle: "Eksempler" 5 | date: 2017-01-03 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/api-reference/examples/the-math-of-java-how-does-it-work.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Matten til Java: Hvordan virker det?" 4 | linkTitle: "Matten til Java" 5 | date: 2017-01-03 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/api-reference/the-inside-of-java-the-inner-workings.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Innsiden av Java: Drivverket" 4 | linkTitle: "Innsiden av Java" 5 | date: 2017-01-02 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/api-reference/the-math-of-monoliths-detailed-spec.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Matten til monolitter: Detaljert spesifikasjon" 4 | linkTitle: "Matten til monolitter" 5 | date: 2017-01-03 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/big-data/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Store mengder data" 4 | linkTitle: "Big Data" 5 | date: 2017-01-01 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/big-data/examples/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Praktiske eksempler" 4 | linkTitle: "Eksempler" 5 | date: 2017-01-02 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/big-data/the-math-of-monographs-how-does-it-work.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Matten til monografer: Hvordan virker det?" 4 | linkTitle: "Matten til monografer" 5 | date: 2017-01-01 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/big-data/tutorials/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Steg for steg hjelpeartikler" 4 | linkTitle: "Hjelpeartikler" 5 | date: 2017-01-01 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/big-data/tutorials/in-depth-go-the-inner-workings.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Detaljert om Go: Drivverket" 4 | linkTitle: "Detaljert om Go" 5 | date: 2017-01-01 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/big-data/tutorials/the-inside-of-java-detailed-spec.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Innsiden av Java: Detaljert spesifikasjon" 4 | linkTitle: "Innsiden av Java" 5 | date: 2017-01-02 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/cloud-computing/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Data i skyen" 4 | linkTitle: "Sky-data" 5 | date: 2017-01-03 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/cloud-computing/examples/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Praktiske eksempler" 4 | linkTitle: "Eksempler" 5 | date: 2017-01-04 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/cloud-computing/examples/in-depth-go-how-does-it-work.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Detaljert om Go: Hvordan virker det?" 4 | linkTitle: "Detaljert om Go" 5 | date: 2017-01-04 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/cloud-computing/in-depth-go-detailed-spec.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Detaljert om Go: Detaljert spesifikasjon" 4 | linkTitle: "Detaljert om Go" 5 | date: 2017-01-05 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/cloud-computing/the-inside-of-java-how-does-it-work.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Innsiden av Java: Hvordan virker det?" 4 | linkTitle: "Innsiden av Java" 5 | date: 2017-01-03 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/cloud-computing/tutorials/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Steg for steg hjelpeartikler" 4 | linkTitle: "Hjelpeartikler" 5 | date: 2017-01-03 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/cloud-computing/tutorials/the-inside-of-go-the-inner-workings.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Innsiden av Go: Drivverket" 4 | linkTitle: "Innsiden av Go" 5 | date: 2017-01-04 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/cloud-computing/tutorials/the-math-of-java-the-inner-workings.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Matten til Java: Drivverket" 4 | linkTitle: "Matten til Java" 5 | date: 2017-01-07 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/content-management/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Håndtering av innhold" 4 | linkTitle: "Innholdshåndtering" 5 | date: 2017-01-04 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/content-management/the-math-of-monoliths-the-inner-workings.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Matten til monolitter: Drivverket" 4 | linkTitle: "Matten til monolitter" 5 | date: 2017-01-06 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/content-management/tutorials/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Steg for steg hjelpeartikler" 4 | linkTitle: "Hjelpeartikler" 5 | date: 2017-01-04 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/cross-platform/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Flere plattformer" 4 | linkTitle: "Flerplattform" 5 | date: 2017-01-05 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/cross-platform/examples/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Praktiske eksempler" 4 | linkTitle: "Eksempler" 5 | date: 2017-01-05 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/docs/cross-platform/examples/in-depth-java-detailed-spec.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Detaljert om Java: Detaljert spesifikasjon" 4 | linkTitle: "Detaljert om Java" 5 | date: 2017-01-08 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/cross-platform/examples/the-math-of-go-the-inner-workings.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Matten til Go: Drivverket" 4 | linkTitle: "Matten til Go" 5 | date: 2017-01-05 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. Lorem markdownum tempus auras formasque ore vir crescere est! Malo quod, hunc, est dura; aut haec simillima nec per conantemque iusserat audax moriensque confessasque. Haec vulneret quam libratum homo pede arbore tu manus membrisque iuveni Clymeneia se cepi unda, iustae? Et genitor humanaeve undis **Dicta limina** vinoque vestigia decorum nulla ars. Pectora sede: quoque magnum Persidaque in suos, adiciunt tenebor. 13 | 14 | Formidine humo velle vulnera remotis admonitu suo mora vivo ubi. Libidine et mittor Orphei nulla. Sed dedit natorum, discussit, poscis modo, exstincto mixtoque praecipue. Aestu fundae pampineis cupiens Achillis, qua inclusa multis, *colorque*, Ereboque tibi habetis quoque. 15 | 16 | 17 | > There should be no margin above this first sentence. 18 | > 19 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 20 | > 21 | > There should be no margin below this final sentence. 22 | 23 | ## First Header 2 24 | 25 | This is a normal paragraph following a header. Victrix tridentigero corripuere messibus, una rector, me se Iovis. *Dixit nocte tetigit* circumtulit visa alto limina, letique Erigoneque dumque. Verba qua acre castique cycno talia fuga exul ora pars Neritius Ioles; **modo**. Solacia fores servat querno tamen! Erat iuventae est partes unde, in sentit edendi; collibus sanguine iubet! 26 | 27 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 28 | 29 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 30 | 31 | Erat vera cur scelus mundo quam? Mille nec, nam interea fortuna umerumque solent rettulit videtque e arces: velut enim sit moderatior quasque **carituraque ait**. 32 | 33 | 34 | ## Second Header 2 35 | 36 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 37 | 38 | ### Header 3 39 | 40 | ``` 41 | This is a code block following a header. 42 | ``` 43 | 44 | Omne tamen vultus et caelum habitabilis inter est: despondet somnus Olympi Iove foribus: habet data, suos. Suis illi auro verba sibi os Turno. Oris avis mariti callida deficis tangor. 45 | 46 | 47 | #### Header 4 48 | 49 | * This is an unordered list following a header. 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | 53 | ##### Header 5 54 | 55 | 1. This is an ordered list following a header. 56 | 2. This is an ordered list following a header. 57 | 3. This is an ordered list following a header. 58 | 59 | ###### Header 6 60 | 61 | | What | Follows | 62 | |-----------|-----------------| 63 | | A table | A header | 64 | | A table | A header | 65 | | A table | A header | 66 | 67 | ---------------- 68 | 69 | There's a horizontal rule above and below this. 70 | 71 | ---------------- 72 | 73 | Here is an unordered list: 74 | 75 | * Liverpool F.C. 76 | * Chelsea F.C. 77 | * Manchester United F.C. 78 | 79 | And an ordered list: 80 | 81 | 1. Michael Brecker 82 | 2. Seamus Blake 83 | 3. Branford Marsalis 84 | 85 | And an unordered task list: 86 | 87 | - [x] Create a Hugo theme 88 | - [x] Add task lists to it 89 | - [ ] Take a vacation 90 | 91 | And a "mixed" task list: 92 | 93 | - [ ] Pack bags 94 | - ? 95 | - [ ] Travel! 96 | 97 | And a nested list: 98 | 99 | * Jackson 5 100 | * Michael 101 | * Tito 102 | * Jackie 103 | * Marlon 104 | * Jermaine 105 | * TMNT 106 | * Leonardo 107 | * Michelangelo 108 | * Donatello 109 | * Raphael 110 | 111 | Definition lists can be used with Markdown syntax. Definition headers are bold. 112 | 113 | Name 114 | : Godzilla 115 | 116 | Born 117 | : 1952 118 | 119 | Birthplace 120 | : Japan 121 | 122 | Color 123 | : Green 124 | 125 | 126 | ---------------- 127 | 128 | Tables should have bold headings and alternating shaded rows. 129 | 130 | | Artist | Album | Year | 131 | |-------------------|-----------------|------| 132 | | Michael Jackson | Thriller | 1982 | 133 | | Prince | Purple Rain | 1984 | 134 | | Beastie Boys | License to Ill | 1986 | 135 | 136 | If a table is too wide, it should scroll horizontally. 137 | 138 | | Artist | Album | Year | Label | Awards | Songs | 139 | |-------------------|-----------------|------|-------------|----------|-----------| 140 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 141 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 142 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 143 | 144 | ---------------- 145 | 146 | Code snippets like `var foo = "bar";` can be shown inline. 147 | 148 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 149 | 150 | Code can also be shown in a block element. 151 | 152 | ``` 153 | foo := "bar"; 154 | bar := "foo"; 155 | ``` 156 | 157 | Code can also use syntax highlighting. 158 | 159 | ```go 160 | func main() { 161 | input := `var foo = "bar";` 162 | 163 | lexer := lexers.Get("javascript") 164 | iterator, _ := lexer.Tokenise(nil, input) 165 | style := styles.Get("github") 166 | formatter := html.New(html.WithLineNumbers()) 167 | 168 | var buff bytes.Buffer 169 | formatter.Format(&buff, style, iterator) 170 | 171 | fmt.Println(buff.String()) 172 | } 173 | ``` 174 | 175 | ``` 176 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 177 | ``` 178 | 179 | Inline code inside table cells should still be distinguishable. 180 | 181 | | Language | Code | 182 | |-------------|--------------------| 183 | | Javascript | `var foo = "bar";` | 184 | | Ruby | `foo = "bar"{` | 185 | 186 | ---------------- 187 | 188 | Small images should be shown at their actual size. 189 | 190 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 191 | 192 | Large images should always scale down and fit in the content container. 193 | 194 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 195 | 196 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 197 | 198 | 199 | ## Components 200 | 201 | ### Alerts 202 | 203 | {{< alert >}}This is an alert.{{< /alert >}} 204 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 205 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 206 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 207 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 208 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 209 | 210 | 211 | ## Another Heading 212 | 213 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 214 | 215 | ### This Document 216 | 217 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 218 | 219 | 220 | ### Pixel Count 221 | 222 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 223 | 224 | ### Contact Info 225 | 226 | Factum Perseus est brevis abdita Odrysius, quod contendere urbes misceat accessit nudum oris non. Cumque dentibus nullam nec mille potentia regnumque supplex! 227 | 228 | 229 | ### External Links 230 | 231 | Doloris decurrere vitae Ida Arcades matres de remisit polypus, introrsus et sed qua maerenti? Serpit meta illic ut sinu. Transformat ungues genitor, et visis ademit sustinet abstulit lampadibus. Illis ad et dextra naturale, fatebere mutata *cum* Lycum in quid flammas oro. Populus Aurora caerula et feremus clavigeri ungues dubitant et inde corpore clamat, qui non Ilioneus pugnat abstuleris undas, habet. 232 | 233 | 234 | 235 | ``` 236 | This is the final element on the page and there should be no margin below this. 237 | ``` -------------------------------------------------------------------------------- /content/no/docs/cross-platform/tutorials/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Steg for steg hjelpeartikler" 4 | linkTitle: "Hjelpeartikler" 5 | date: 2017-01-06 6 | description: > 7 | En kort oppsummering av denne siden. Tekst kan **utheves** sller skrives i _kursiv_ og kan ha flere avsnitt. 8 | --- 9 | 10 | Dette er landingssiden til en seksjon et sted nede i seksjonshierarkiet. 11 | 12 | * Oppsummer 13 | * Seksjonen din 14 | * Her 15 | 16 | 17 | -------------------------------------------------------------------------------- /content/no/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Søkeresultat 3 | layout: search 4 | 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- 1 | #Copyright 2018 Google LLC 2 | # 3 | #Licensed under the Apache License, Version 2.0 (the "License"); 4 | #you may not use this file except in compliance with the License. 5 | #You may obtain a copy of the License at 6 | # 7 | # https://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | #Unless required by applicable law or agreed to in writing, software 10 | #distributed under the License is distributed on an "AS IS" BASIS, 11 | #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | #See the License for the specific language governing permissions and 13 | #limitations under the License. 14 | # 15 | rm -rf public/ 16 | HUGO_ENV="production" hugo --gc || exit 1 17 | s3deploy -source=public/ -region=eu-west-1 -bucket=bep.is -distribution-id=E8OKNT7W9ZYZ2 -path temp/td 18 | -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main"}} 2 |
3 |
4 |

Not found

5 |

Oops! This page doesn't exist. Try going back to our home page.

6 | 7 |

You can learn how to make a 404 page like this in Custom 404 Pages.

8 |
9 |
10 | {{ end }} 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tech-doc-hugo", 3 | "version": "0.0.1", 4 | "description": "Hugo theme for technical documentation.", 5 | "main": "none.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/bep/tech-doc-hugo.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/bep/tech-doc-hugo/issues" 17 | }, 18 | "homepage": "https://github.com/bep/tech-doc-hugo#readme", 19 | "dependencies": {}, 20 | "devDependencies": { 21 | "autoprefixer": "^9.4.6", 22 | "postcss-cli": "^5.0.1" 23 | } 24 | } 25 | --------------------------------------------------------------------------------